home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1998 November: Tool Chest / Dev.CD Nov 98 TC.toast / Sample Code / Text / SimpleText Sample / FATSimpleText.make < prev    next >
Encoding:
Text File  |  1996-10-17  |  4.2 KB  |  153 lines  |  [TEXT/MPS ]

  1. #   File:       FATSimpleText.make
  2. #   Target:     FATSimpleText
  3. #   Sources:    AboutBox.c
  4. #               Clipboard.c
  5. #               GXFile.c
  6. #               MovieFile.c
  7. #               PICTFile.c
  8. #               SimpleText.c
  9. #               TextDrag.c
  10. #               TextFile.a
  11. #               TextFile.c
  12. #               ThreeDMetafile.c
  13. #   Created:    Thursday, September 26, 1996 05:14:37 PM
  14.  
  15.  
  16. MAKEFILE     = 
  17. •MondoBuild• = {MAKEFILE}  # Make blank to avoid rebuilds when makefile is modified
  18. Includes     = ∂
  19.         -i "{MPW}Interfaces&Libraries:Interfaces:CIncludes:" ∂
  20.         -i "{MPW}Interfaces&Libraries:Interfaces:RIncludes:"
  21. Sym•PPC      = 
  22. ObjDir•PPC   =
  23. Sym•68K      = 
  24. ObjDir•68K   =
  25.  
  26. PPCCOptions  = {Includes} {Sym•PPC} 
  27.  
  28. COptions     = {Includes} {Sym•68K} -w 17 -model far
  29.  
  30. Objects•PPC  = ∂
  31.         "{ObjDir•PPC}AboutBox.c.x" ∂
  32.         "{ObjDir•PPC}Clipboard.c.x" ∂
  33.         "{ObjDir•PPC}GXFile.c.x" ∂
  34.         "{ObjDir•PPC}MovieFile.c.x" ∂
  35.         "{ObjDir•PPC}PICTFile.c.x" ∂
  36.         "{ObjDir•PPC}SimpleText.c.x" ∂
  37.         "{ObjDir•PPC}TextDrag.c.x" ∂
  38.         "{ObjDir•PPC}TextFile.c.x" ∂
  39.         "{ObjDir•PPC}ThreeDMetafile.c.x" ∂
  40.         AGFileLib.xcoff ∂
  41.         AppleGuideGlue.xcoff
  42.         
  43. Objects•68K  = ∂
  44.         "{ObjDir•68K}AboutBox.c.o" ∂
  45.         "{ObjDir•68K}Clipboard.c.o" ∂
  46.         "{ObjDir•68K}GXFile.c.o" ∂
  47.         "{ObjDir•68K}MovieFile.c.o" ∂
  48.         "{ObjDir•68K}PICTFile.c.o" ∂
  49.         "{ObjDir•68K}SimpleText.c.o" ∂
  50.         "{ObjDir•68K}TextDrag.c.o" ∂
  51.         "{ObjDir•68K}TextFile.a.o" ∂
  52.         "{ObjDir•68K}TextFile.c.o" ∂
  53.         "{ObjDir•68K}ThreeDMetafile.c.o" ∂
  54.         AGFileLib.o
  55.  
  56.  
  57. FATSimpleText ƒƒ {•MondoBuild•} {Objects•PPC}
  58.     PPCLink ∂
  59.         -o {Targ} {Sym•PPC} ∂
  60.         {Objects•PPC} ∂
  61.         -t 'APPL' ∂
  62.         -c 'ttxt' ∂
  63.         -weaklib "QuickTimeLib" ∂
  64.         -weaklib "ThreadsLib" ∂
  65.         -weaklib "SpeechLib" ∂
  66.         -weaklib "DragLib" ∂
  67.         -weaklib "QuickDrawGXLib" ∂
  68.         "{SharedLibraries}QuickTimeLib" ∂
  69.         "{SharedLibraries}ThreadsLib" ∂
  70.         "{SharedLibraries}SpeechLib" ∂
  71.         "{SharedLibraries}DragLib" ∂
  72.         "{SharedLibraries}QuickDrawGXLib" ∂
  73.         "{SharedLibraries}InterfaceLib" ∂
  74.         "{SharedLibraries}StdCLib" ∂
  75.         "{SharedLibraries}MathLib" ∂
  76.         "{PPCLibraries}StdCRuntime.o" ∂
  77.         "{PPCLibraries}PPCCRuntime.o" ∂
  78.         "{PPCLibraries}PPCToolLibs.o"
  79.  
  80.  
  81. FATSimpleText ƒƒ {•MondoBuild•} {Objects•68K}
  82.     Link ∂
  83.         -o {Targ} -d {Sym•68K} ∂
  84.         {Objects•68K} ∂
  85.         -t 'APPL' ∂
  86.         -c 'ttxt' ∂
  87.         -model far ∂
  88.         "{CLibraries}StdCLib.o" ∂
  89.         "{Libraries}MacRuntime.o" ∂
  90.         "{Libraries}Interface.o"
  91.         
  92. FATSimpleText ƒƒ {•MondoBuild•} SimpleText.r
  93.     Rez SimpleText.r -o {Targ} {Includes} -append
  94.  
  95. "{ObjDir•PPC}AboutBox.c.x" ƒ {•MondoBuild•} AboutBox.c
  96.     {PPCC} AboutBox.c -o {Targ} {PPCCOptions}
  97.  
  98. "{ObjDir•PPC}Clipboard.c.x" ƒ {•MondoBuild•} Clipboard.c
  99.     {PPCC} Clipboard.c -o {Targ} {PPCCOptions}
  100.  
  101. "{ObjDir•PPC}GXFile.c.x" ƒ {•MondoBuild•} GXFile.c
  102.     {PPCC} GXFile.c -o {Targ} {PPCCOptions}
  103.  
  104. "{ObjDir•PPC}MovieFile.c.x" ƒ {•MondoBuild•} MovieFile.c
  105.     {PPCC} MovieFile.c -o {Targ} {PPCCOptions}
  106.  
  107. "{ObjDir•PPC}PICTFile.c.x" ƒ {•MondoBuild•} PICTFile.c
  108.     {PPCC} PICTFile.c -o {Targ} {PPCCOptions}
  109.  
  110. "{ObjDir•PPC}SimpleText.c.x" ƒ {•MondoBuild•} SimpleText.c
  111.     {PPCC} SimpleText.c -o {Targ} {PPCCOptions}
  112.  
  113. "{ObjDir•PPC}TextDrag.c.x" ƒ {•MondoBuild•} TextDrag.c
  114.     {PPCC} TextDrag.c -o {Targ} {PPCCOptions}
  115.  
  116. "{ObjDir•PPC}TextFile.c.x" ƒ {•MondoBuild•} TextFile.c
  117.     {PPCC} TextFile.c -o {Targ} {PPCCOptions}
  118.  
  119. "{ObjDir•PPC}ThreeDMetafile.c.x" ƒ {•MondoBuild•} ThreeDMetafile.c
  120.     {PPCC} ThreeDMetafile.c -o {Targ} {PPCCOptions}
  121.  
  122.  
  123. "{ObjDir•68K}AboutBox.c.o" ƒ {•MondoBuild•} AboutBox.c
  124.     {C} AboutBox.c -o {Targ} {COptions}
  125.  
  126. "{ObjDir•68K}Clipboard.c.o" ƒ {•MondoBuild•} Clipboard.c
  127.     {C} Clipboard.c -o {Targ} {COptions}
  128.  
  129. "{ObjDir•68K}GXFile.c.o" ƒ {•MondoBuild•} GXFile.c
  130.     {C} GXFile.c -o {Targ} {COptions}
  131.  
  132. "{ObjDir•68K}MovieFile.c.o" ƒ {•MondoBuild•} MovieFile.c
  133.     {C} MovieFile.c -o {Targ} {COptions}
  134.  
  135. "{ObjDir•68K}PICTFile.c.o" ƒ {•MondoBuild•} PICTFile.c
  136.     {C} PICTFile.c -o {Targ} {COptions}
  137.  
  138. "{ObjDir•68K}SimpleText.c.o" ƒ {•MondoBuild•} SimpleText.c
  139.     {C} SimpleText.c -o {Targ} {COptions}
  140.  
  141. "{ObjDir•68K}TextDrag.c.o" ƒ {•MondoBuild•} TextDrag.c
  142.     {C} TextDrag.c -o {Targ} {COptions}
  143.  
  144. "{ObjDir•68K}TextFile.a.o" ƒ {•MondoBuild•} TextFile.a
  145.     {Asm} TextFile.a -o {Targ} {AOptions}
  146.  
  147. "{ObjDir•68K}TextFile.c.o" ƒ {•MondoBuild•} TextFile.c
  148.     {C} TextFile.c -o {Targ} {COptions}
  149.  
  150. "{ObjDir•68K}ThreeDMetafile.c.o" ƒ {•MondoBuild•} ThreeDMetafile.c
  151.     {C} ThreeDMetafile.c -o {Targ} {COptions}
  152.  
  153.